
/* CUSTOMIZE THE CAROUSEL
-------------------------------------------------- */

/* Carousel base class */
.carousel {
  margin-bottom: 20px;

  /* Negative margin to pull up carousel. 90px is roughly margins and height of navbar. */
  margin-top: 20px;
}
/* Since positioning the image, we need to help out the caption */
.carousel-caption {
  z-index: 10;
}

/* Declare heights because of positioning of img element */
.carousel .item {
  width: 100%;
  height: auto;
  background-color: #ffffff;
}
.carousel-inner > .item > img {
  min-width: 100%;
  height: auto;
}

